package com.om.calculator;

public class Minus {
    void execute(OperandStack stack) {
    int rightOperand = stack.pop();
    int leftOperand = stack.pop();
    int sum = leftOperand - rightOperand;
    stack.push(sum);
    }
}
